home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / wdj1096.zip / ZOLMAN.ZIP / MDIICONS.ZIP / ICONSVW.H < prev    next >
C/C++ Source or Header  |  1996-02-16  |  1KB  |  56 lines

  1. // iconsvw.h : interface of the CIconsView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CIconsView : public CFormView
  6. {
  7. protected: // create from serialization only
  8.     CIconsView();
  9.     DECLARE_DYNCREATE(CIconsView)
  10.  
  11. public:
  12.     //{{AFX_DATA(CIconsView)
  13.     enum{ IDD = IDD_ICONS_FORM };
  14.         // NOTE: the ClassWizard will add data members here
  15.     //}}AFX_DATA
  16.  
  17. // Attributes
  18. public:
  19.     CIconsDoc* GetDocument();
  20.  
  21. // Operations
  22. public:
  23.  
  24. // Implementation
  25. public:
  26.     virtual ~CIconsView();
  27. #ifdef _DEBUG
  28.     virtual void AssertValid() const;
  29.     virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31.  
  32. protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.  
  35.     // Printing support
  36.     virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  37.     virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  38.     virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  39.     virtual void OnPrint(CDC* pDC, CPrintInfo*);
  40.  
  41. // Generated message map functions
  42. protected:
  43.     //{{AFX_MSG(CIconsView)
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code !
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. #ifndef _DEBUG  // debug version in iconsvw.cpp
  51. inline CIconsDoc* CIconsView::GetDocument()
  52.    { return (CIconsDoc*)m_pDocument; }
  53. #endif
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.